home *** CD-ROM | disk | FTP | other *** search
- /* Send IRC-address to your IRC-client
- Currently supported is AmIRC.
- $VER: SendIRC.amicomsys 1.0 (24.1.1998) Håkan Parting
- */
- parse arg server'/'channel
-
- /*
- if show('P','AMIRC.1') then
- do
- ADDRESS AMIRC.1 SAY "/SERVER "server
- ADDRESS AMIRC.1 SAY "/JOIN "channel
- Exit
- end
- */
-
- /* Set the path to your AmIRC-client under the Misc-page in AmiComSys settings.
- */
-
- OPTIONS RESULTS;
-
- ADDRESS AMICOMSYS GET stem info.;
-
- ADDRESS COMMAND "c:run >NIL: "info.ircprgpath" Server="server" AutoJoin="channel" connect"
-
- Exit
-